namespace EnhancedScrollerDemos.ViewDrivenCellSizes { /// /// Super simple data class to hold information for each cell. /// public class Data { public string someText; /// /// We will store the cell size in the model so that the cell view can update it /// public float cellSize; } }